home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 51 / Mac Magazin and MacEasy Magazine CD - Issue 51.iso / Software / Online / WebSentinel 2.0.4 / Extras / Scripting / Scripting Read Me < prev    next >
Text File  |  1998-08-31  |  6KB  |  138 lines

  1. WebSentinel Scripting Read Me
  2.  
  3. About WebSentinel Scripting
  4.  
  5. There are several basic things you can do from a script, including:
  6.  
  7.   - getting information about currently defined targets or realms
  8.   - getting a list (or partial list) of users or groups from a specific target
  9.   - creating a new realm, user, or group
  10.   - modifying the attributes of an existing realm, user, or group
  11.   - deleting a realm, user, or group
  12.  
  13. The most commonly used feature here is the ability to automatically add a user and give them access to a set or realms or groups.  For example, you could add a user to WebSentinel from common CGI products such as WebSiphon, Lasso, or Tango when a user submitted a form, or role your own simple AppleScript CGI.  You could also create a script that would generate reports, detailing which users had access to which areas of the site, for example.
  14.  
  15. In order to start WebSentinel scripting, it's important to understand the basics of how WebSentinel keeps track of information.  Each item (whether it's a target, realm, user, or group) has a unique id that can be used to reference that item.  When you request a list of realms, you'll notice that each realm object contains a unique number in addition to the realm name, match string, etc.  In a script, you can keep track of this unique identifier and use it when calling other WebSentinel functions, such as changing a realm's attributes, or adding a user to a realm.
  16.  
  17. Additionally, any function that accepts a realm id or target id can also accept a realm name or target name.  Note that this is slower than sending an id, however, since WebSentinel must do the conversion for you.
  18.  
  19.  
  20. Examples
  21.  
  22. There are several simple examples on how to script WebSentinel using a variety of applications.  Until there is sufficient documentation, the best way to understand the scripting capabilities is probably to poke around in the Script Editor.  The following is a description of the items you may wish to look.
  23.  
  24. AppleScript
  25.  
  26. - Add User example: Demonstrates how to add a user to WebSentinel with access to a realm.
  27. - WebSentinel Dictionary: A copy of WebSentinel Gateway's dictionary.  This is the same as opening WebSentinel Gateway from the Open Dictionary menu item in Script Editor.
  28.  
  29. WebSiphon
  30.  
  31. - sentinel_functions.t: An include file for use with WebSiphon 1.5 or later that simplifies communicating with WebSentinel.  The file contains WebSiphon functions you can call directly from your WebSiphon templates.  Just include the file in your template, or drop the sentinel_functions.t file into your script libraries folder.
  32.  
  33. Frontier
  34.  
  35. - WebSentinel Frontier glue: A Frontier glue file for use with WebSentinel.  Double-click on it to install it into your copy of Frontier.
  36. - Frontier Menu Sharing support: Double-click on this file to install a default menubar into Frontier.  When Frontier is running you will have access to a special "Scripts" menu from within WebSentinel Admin.
  37.  
  38.  
  39.  
  40. Apple Event Reference
  41.  
  42. If you need to know the exact Apple event codes, here is a list of all the events and parameters.
  43.  
  44. Event Suite for WebSentinel                    'BeAr'
  45. Event Class for all events                        's_ec'
  46.  
  47. Count Users                                                                                    's_cu'
  48.         target id or name                                                 '----'
  49.  
  50. Coount Groups                                                                            's_cg'
  51.         target id or name                                                    '----'
  52.  
  53. Get Targets                                                                                    's_gt'
  54.   (no params)
  55.  
  56. Get Realms                                                                                        's_gr'
  57.   (no params)
  58.  
  59. Get Users                                                                                            's_gu'
  60.         target id or name                                                    's_tp'
  61.         starting with                                                                    's_sw'
  62.         max to return                                                                    's_nr'
  63.  
  64. Get Groups                                                                                        's_gg'
  65.         target id or name                                              's_tp'
  66.         starting with                                                                    's_sw'
  67.   max to return                                                                    's_nr'
  68.  
  69. Add Realm                                                                                            's_ar'
  70.   realm name                    '----'
  71.   match string                  's_mp'
  72.   GREP                          's_gp'
  73.   no access path                's_na'
  74.   notes                         's_nt'
  75.   label                         's_lp'
  76.   target id or name             's_tp'
  77.  
  78. Add User                                                                                                's_au'
  79.   username                      '----'
  80.   password                      's_pp'
  81.   realms                        's_rl'
  82.         groups                        's_gr'
  83.   notes                         's_nt'
  84.   label                         's_lp'
  85.   target id or name             's_tp'
  86.  
  87. Add Group                                                                                            's_ag'
  88.   group name                    '----'
  89.   realms                        's_rl'
  90.   notes                         's_nt'
  91.   label                         's_lp'
  92.   target id or name             's_tp'
  93.  
  94. Set Realm                                                                                            's_sr'
  95.   realm id or name              '----'
  96.   realm name                    's_np'
  97.   match string                  's_mp'
  98.   GREP                          's_gp'
  99.   no access path                's_na'
  100.   notes                         's_nt'
  101.   label                         's_lp'
  102.   target id or name             's_tp'
  103.  
  104. Set User                                                                                                's_su'
  105.   user id                       '----'
  106.   username                      's_np'
  107.   password                      's_pp'
  108.   realms                        's_rl'
  109.         groups                        's_gr'
  110.   notes                         's_nt'
  111.   label                         's_lp'
  112.   target id or name             's_tp'
  113.  
  114. Set Group                                                                                            's_sg'
  115.   group id                      '----'
  116.   group name                    's_np'
  117.   realms                        's_rl'
  118.   notes                         's_nt'
  119.   label                         's_lp'
  120.   target id or name             's_tp'
  121.  
  122. Remove Realm                                                                                's_rr'
  123.   realm id or name              '----'
  124.  
  125. Remove User                                                                                    's_ru'
  126.   user id                       '----'
  127.   target id or name             's_tp'
  128.  
  129. Remove Group                                                                                's_rg'
  130.   group id                      '----'
  131.   target id or name             's_tp'
  132.  
  133. Lookup User                                                                                    's_lu'
  134.   username                      '----'
  135.   target id or name             's_tp'
  136.  
  137.  
  138.